home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / header.inc.php < prev    next >
PHP Script  |  2005-03-22  |  10KB  |  220 lines

  1. <?php
  2. /* $Id: header.inc.php,v 2.28 2005/03/23 11:51:56 lem9 Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. if (empty($GLOBALS['is_header_sent'])) {
  6.  
  7.     /**
  8.      * Gets a core script and starts output buffering work
  9.      */
  10.     require_once('./libraries/common.lib.php');
  11.     require_once('./libraries/ob.lib.php');
  12.     if ($GLOBALS['cfg']['OBGzip']) {
  13.         $GLOBALS['ob_mode'] = PMA_outBufferModeGet();
  14.         if ($GLOBALS['ob_mode']) {
  15.             PMA_outBufferPre($GLOBALS['ob_mode']);
  16.         }
  17.     }
  18.  
  19.     // garvin: For re-usability, moved http-headers and stylesheets
  20.     // to a seperate file. It can now be included by header.inc.php,
  21.     // queryframe.php, querywindow.php.
  22.  
  23.     require_once('./libraries/header_http.inc.php');
  24.     require_once('./libraries/header_meta_style.inc.php');
  25.     /* replaced 2004-05-05 by Michael Keck (mkkeck)
  26.     $title     = '';
  27.     if (isset($GLOBALS['db'])) {
  28.         $title .= str_replace('\'', '\\\'', $GLOBALS['db']);
  29.     }
  30.     if (isset($GLOBALS['table'])) {
  31.         $title .= (empty($title) ? '' : '.') . str_replace('\'', '\\\'', $GLOBALS['table']);
  32.     }
  33.     if (!empty($GLOBALS['cfg']['Server']) && isset($GLOBALS['cfg']['Server']['host'])) {
  34.         $title .= (empty($title) ? 'phpMyAdmin ' : ' ')
  35.                . sprintf($GLOBALS['strRunning'], (empty($GLOBALS['cfg']['Server']['verbose']) ? str_replace('\'', '\\\'', $GLOBALS['cfg']['Server']['host']) : str_replace('\'', '\\\'', $GLOBALS['cfg']['Server']['verbose'])));
  36.     }
  37.     $title     .= (empty($title) ? '' : ' - ') . 'phpMyAdmin ' . PMA_VERSION;
  38.     */
  39.     /* the new one
  40.      * 2004-05-05: replaced by Michael Keck (mkkeck)
  41.      */
  42.     $title     = '';
  43.     if ($cfg['ShowHttpHostTitle']) {
  44.         $title .= (empty($GLOBALS['cfg']['SetHttpHostTitle']) && isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $GLOBALS['cfg']['SetHttpHostTitle']) . ' >> ';
  45.     }
  46.     if (!empty($GLOBALS['cfg']['Server']) && isset($GLOBALS['cfg']['Server']['host'])) {
  47.         $title.=str_replace('\'', '\\\'', $GLOBALS['cfg']['Server']['host']);
  48.     }
  49.     if (isset($GLOBALS['db'])) {
  50.         $title .= ' >> ' . str_replace('\'', '\\\'', $GLOBALS['db']);
  51.     }
  52.     if (isset($GLOBALS['table'])) {
  53.         $title .= (empty($title) ? '' : ' ') . ' >> ' . str_replace('\'', '\\\'', $GLOBALS['table']);
  54.     }
  55.     $title .= ' | phpMyAdmin ' . PMA_VERSION;
  56.     ?>
  57.     <script type="text/javascript" language="javascript">
  58.     <!--
  59.     // Updates the title of the frameset if possible (ns4 does not allow this)
  60.     if (typeof(parent.document) != 'undefined' && typeof(parent.document) != 'unknown'
  61.         && typeof(parent.document.title) == 'string') {
  62.         parent.document.title = '<?php echo $title; ?>';
  63.     }
  64.  
  65.     document.write('<style type="text/css">');
  66.     document.write('img.lightbulb { cursor: pointer; }');
  67.     document.write('<\/style>');
  68.     
  69.     <?php
  70.     // Add some javascript instructions if required
  71.     if (isset($js_to_run) && $js_to_run == 'functions.js') {
  72.         echo "\n";
  73.         ?>
  74.     // js form validation stuff
  75.     var errorMsg0   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strFormEmpty']); ?>';
  76.     var errorMsg1   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotNumber']); ?>';
  77.     var errorMsg2   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotValidNumber']); ?>';
  78.     var noDropDbMsg = '<?php echo((!$GLOBALS['cfg']['AllowUserDropDatabase']) ? str_replace('\'', '\\\'', $GLOBALS['strNoDropDatabases']) : ''); ?>';
  79.     var confirmMsg  = '<?php echo(($GLOBALS['cfg']['Confirm']) ? str_replace('\'', '\\\'', $GLOBALS['strDoYouReally']) : ''); ?>';
  80.     var confirmMsgDropDB  = '<?php echo(($GLOBALS['cfg']['Confirm']) ? str_replace('\'', '\\\'', $GLOBALS['strDropDatabaseStrongWarning']) : ''); ?>';
  81.     //-->
  82.     </script>
  83.     <script src="libraries/functions.js" type="text/javascript" language="javascript"></script>
  84.         <?php
  85.     } else if (isset($js_to_run) && $js_to_run == 'user_password.js') {
  86.         echo "\n";
  87.         ?>
  88.     // js form validation stuff
  89.     var jsHostEmpty       = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strHostEmpty']); ?>';
  90.     var jsUserEmpty       = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strUserEmpty']); ?>';
  91.     var jsPasswordEmpty   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strPasswordEmpty']); ?>';
  92.     var jsPasswordNotSame = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strPasswordNotSame']); ?>';
  93.     //-->
  94.     </script>
  95.     <script src="libraries/user_password.js" type="text/javascript" language="javascript"></script>
  96.         <?php
  97.     } else if (isset($js_to_run) && $js_to_run == 'server_privileges.js') {
  98.         echo "\n";
  99.         ?>
  100.     // js form validation stuff
  101.     var jsHostEmpty       = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strHostEmpty']); ?>';
  102.     var jsUserEmpty       = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strUserEmpty']); ?>';
  103.     var jsPasswordEmpty   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strPasswordEmpty']); ?>';
  104.     var jsPasswordNotSame = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strPasswordNotSame']); ?>';
  105.     //-->
  106.     </script>
  107.     <script src="libraries/server_privileges.js" type="text/javascript" language="javascript"></script>
  108.         <?php
  109.     } else if (isset($js_to_run) && $js_to_run == 'indexes.js') {
  110.         echo "\n";
  111.         ?>
  112.     // js index validation stuff
  113.     var errorMsg0   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strFormEmpty']); ?>';
  114.     var errorMsg1   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotNumber']); ?>';
  115.     var errorMsg2   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotValidNumber']); ?>';
  116.     //-->
  117.     </script>
  118.     <script src="libraries/indexes.js" type="text/javascript" language="javascript"></script>
  119.         <?php
  120.     } else if (isset($js_to_run) && $js_to_run == 'tbl_change.js') {
  121.         echo "\n";
  122.         ?>
  123.     //-->
  124.     </script>
  125.     <script src="libraries/tbl_change.js" type="text/javascript" language="javascript"></script>
  126.         <?php
  127.     } else {
  128.         echo "\n";
  129.         ?>
  130.     //-->
  131.     </script>
  132.         <?php
  133.     }
  134.     echo "\n";
  135.  
  136.     // Reloads the navigation frame via JavaScript if required
  137.     PMA_reloadNavigation();
  138.     ?>
  139.         <meta name="OBGZip" content="<?php echo ($cfg['OBGzip'] ? 'true' : 'false'); ?>" />
  140.     </head>
  141.  
  142.  
  143.     <?php
  144.     if ($GLOBALS['cfg']['RightBgImage'] != '') {
  145.         $bkg_img = ' background="' . $GLOBALS['cfg']['RightBgImage'] . '"';
  146.     } else {
  147.         $bkg_img = '';
  148.     }
  149.     ?>
  150.     <body bgcolor="<?php echo $GLOBALS['cfg']['RightBgColor'] . '"' . $bkg_img; ?>>
  151.     <div id="TooltipContainer" name="TooltipContainer" onmouseover="holdTooltip();" onmouseout="swapTooltip('default');"></div>
  152.     <?php
  153.     include('./config.header.inc.php');
  154.  
  155.     if (!defined('PMA_DISPLAY_HEADING')) {
  156.         define('PMA_DISPLAY_HEADING', 1);
  157.     }
  158.  
  159.     /**
  160.      * Display heading if needed. Design can be set in css file.
  161.      */
  162.  
  163.     if (PMA_DISPLAY_HEADING) {
  164.         echo '<table border="0" cellpadding="0" cellspacing="0" id="serverinfo">' . "\n"
  165.            . '    <tr>' . "\n";
  166.         $header_url_qry = '?' . PMA_generate_common_url();
  167.         $server_info = (!empty($cfg['Server']['verbose'])
  168.                         ? $cfg['Server']['verbose']
  169.                         : $server_info = $cfg['Server']['host'] . (empty($cfg['Server']['port'])
  170.                                                                    ? ''
  171.                                                                    : ':' . $cfg['Server']['port']
  172.                                                                   )
  173.                        );
  174.         echo '        '
  175.            . '<td class="serverinfo">' . $GLOBALS['strServer'] . ': '
  176.            . '<a href="' . $GLOBALS['cfg']['DefaultTabServer'] . '?' . PMA_generate_common_url() . '">';
  177.         if ($GLOBALS['cfg']['MainPageIconic']) {
  178.             echo '<img src="' . $GLOBALS['pmaThemeImage'] . 's_host.png" width="16" height="16" border="0" alt="' . htmlspecialchars($server_info) . '" />';
  179.         }
  180.         echo htmlspecialchars($server_info) . '</a>' . "\n"
  181.            . '</td>' . "\n\n";
  182.  
  183.         if (!empty($GLOBALS['db'])) {
  184.             echo '        '
  185.                . '<td class="serverinfo"><div></div></td>' . "\n" . '            '
  186.                . '<td class="serverinfo">' . $GLOBALS['strDatabase'] . ': '
  187.                . '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?' . PMA_generate_common_url($GLOBALS['db']) . '">';
  188.             if ($GLOBALS['cfg']['MainPageIconic']) {
  189.                 echo '<img src="' . $GLOBALS['pmaThemeImage'] . 's_db.png" width="16" height="16" border="0" alt="' . htmlspecialchars($GLOBALS['db']) . '" />';
  190.             }
  191.             echo htmlspecialchars($GLOBALS['db']) . '</a>' . "\n"
  192.                . '</td>' . "\n\n";
  193.  
  194.             if (!empty($GLOBALS['table'])) {
  195.                 if (PMA_MYSQL_INT_VERSION >= 50000) {
  196.                     require_once('./tbl_properties_table_info.php');
  197.                 } else {
  198.                     $tbl_is_view = FALSE;
  199.                 }
  200.                 echo '        '
  201.                    . '<td class="serverinfo"><div></div></td>' . "\n" . '            '
  202.                    . '<td class="serverinfo">' . (isset($GLOBALS['tbl_is_view']) && $GLOBALS['tbl_is_view'] ? $GLOBALS['strView'] : $GLOBALS['strTable']) . ': '
  203.                    . '<a href="' . $GLOBALS['cfg']['DefaultTabTable'] . '?' . PMA_generate_common_url($GLOBALS['db'], $GLOBALS['table']) . '">';
  204.                 if ($GLOBALS['cfg']['MainPageIconic']) {
  205.                     echo '<img src="' . $GLOBALS['pmaThemeImage'] . (isset($GLOBALS['tbl_is_view']) && $GLOBALS['tbl_is_view'] ? 'b_views' : 's_tbl') . '.png" width="16" height="16" border="0" alt="' . htmlspecialchars($GLOBALS['table']) . '" />';
  206.                 }
  207.                 echo htmlspecialchars($GLOBALS['table']) . '</a>' . "\n"
  208.                    . '</td>' . "\n\n";
  209.             }
  210.         }
  211.         echo '    </tr>' . "\n" . '</table>';
  212.     }
  213.     /**
  214.      * Sets a variable to remember headers have been sent
  215.      */
  216.     $GLOBALS['is_header_sent'] = TRUE;
  217. }
  218.  
  219. ?>
  220.